home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Edytory i konwertery filmow / MediaCoder 0.5.1 pre12 / MediaCoder-0.5.1-pre12.exe / htdocs / setup / setup.js < prev    next >
Text File  |  2006-07-13  |  401b  |  17 lines

  1. function signalPageUnload(signal)
  2. {
  3.     var xmlhttp = new XMLHttpRequest;
  4.     xmlhttp.open("GET", "savedata?unload=" + signal, false);
  5.     xmlhttp.send(null);
  6. }
  7.  
  8. function setPageSize(width, height)
  9. {
  10.     window.innerWidth = width;
  11.     window.innerHeight = height;
  12. }
  13.  
  14. function moveCenter()
  15. {
  16.     window.moveTo((screen.availWidth - window.outerWidth) / 2, (screen.availHeight - window.outerHeight) / 2);
  17. }